home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / kbd-patch / emacs-version.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-31  |  610 b   |  17 lines  |  [TEXT/EMAC]

  1. /*
  2.  * Copyright (C) 1993, 1994 Marc Parmet.
  3.  * This file is part of the Macintosh port of GNU Emacs.
  4.  *
  5.  * GNU Emacs is distributed in the hope that it will be useful,
  6.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  7.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  8.  * GNU General Public License for more details.
  9.  */
  10.  
  11. #define emacs_version_major        0x01
  12. #define emacs_version_minor        0x14
  13. #define emacs_version_subminor    0x01
  14. #define emacs_version_string    "1.14b1"
  15. #define emacs_version_complete \
  16.     ((emacs_version_major << 16) + (emacs_version_minor<<8) + emacs_version_subminor)
  17.